pathname - определение. Что такое pathname
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое pathname - определение

GENERAL FORM OF THE NAME OF A FILE OR DIRECTORY; RESOURCES CAN BE REPRESENTED BY EITHER ABSOLUTE OR RELATIVE PATHS
Absolute path; Relative path; Uniform Naming Convention; Universal Naming Convention; File path; Path (computer science); Pathname; Absolute path (computing); Full path; Windows path; Path name; Unix path; UNC path; Relative referencing; UNC address; Pathnames; Folder path; Directory path; Directory separator; Filepath
  • Windows]] [[command shell]] showing filenames in a directory
Найдено результатов: 9
pathname         
¦ noun Computing a description of where an item is to be found in a hierarchy of directories.
pathname         
<file system> (Or "path") The specification of a node (file or directory) in a hierarchical file system. The path is usually specified by listing the nodes top-down, separating the directories by the pathname separator ("/" in Unix, "" in MS-DOS). A pathname may be an absolute pathname or a {relative pathname}. The part of the pathname of a file after the last separator is called the basename. (1997-03-10)
Uniform Naming Convention         
<networking> (UNC) Used in IBM PC networking to completely specify a directory on a file server. The basic format is: servernamesharename where "servername" is the hostname of a network file server, and "sharename" is the name of a networked or shared directory. Note this is not the same as the conventional MS-DOS "C:windows" directory name. E.g. server1dave might be set up to point to C:usershomedirsdave on a server called "server1". It is possible to execute a program using this convention without having to specifically link a drive, by running: serversharedirectoryprogram.exe The undocumented DOS command, TRUENAME can be used to find out the UNC name of a file or directory on a network drive. (1995-11-14)
absolute path         
<file system> A path relative to the root directory. Its first character must be the pathname separator. (1996-11-21)
Path (computing)         
A path is a string of characters used to uniquely identify a location in a directory structure. It is composed by following the directory tree hierarchy in which components, separated by a delimiting character, represent each directory.
relative pathname      
<file system> A path relative to the working directory. Its first character can be anything but the {pathname separator}. (1996-11-21)
absolute pathname      
<file system> A pathname relative to the root directory. (1996-11-21)
pathname separator      
<file system> The character used to separate elements of a path or pathname. Under Unix and POSIX.1 compliant systems the pathname separator is the (forward) slash, in MS-DOS backslash serves the same purpose. For obvious reasons the no directory or file name can contain this character. (1996-11-21)
Directory traversal attack         
COMPUTER SECURITY VULNERABILITY TO GAIN UNAUTHORIZED ACCESS TO THE FILE SYSTEM
Path traversal vulnerability; Path traversal; Directory traversal
A directory traversal (or path traversal) attack exploits insufficient security validation or sanitization of user-supplied file names, such that characters representing "traverse to parent directory" are passed through to the operating system's file system API. An affected application can be exploited to gain unauthorized access to the file system.

Википедия

Path (computing)

A path is a string of characters used to uniquely identify a location in a directory structure. It is composed by following the directory tree hierarchy in which components, separated by a delimiting character, represent each directory. The delimiting character is most commonly the slash ("/"), the backslash character ("\"), or colon (":"), though some operating systems may use a different delimiter. Paths are used extensively in computer science to represent the directory/file relationships common in modern operating systems and are essential in the construction of Uniform Resource Locators (URLs). Resources can be represented by either absolute or relative paths.